Dashboard Temp Share Shortlinks Frames API

HTMLify

Square Root of a number.cpp
Views: 1 | Author: cody
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
int floorSqrt(int n)

{

    // Write your code here.

    int low =1,high=n;

    while(low<=high){

        long long mid=(high+low)/2;

        long long val=(mid*mid);

        if(val<=n){

            low=mid+1;

        }

        else{

            high=mid-1;

        }

    }

    return high;

}